From 413d27508f92306bb6daf87426b6444525391f27 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sun, 10 Apr 2016 21:42:04 +0200 Subject: [PATCH] GtkTrayIcon: fix uninitialised variable https://bugzilla.gnome.org/show_bug.cgi?id=764863 --- gtk/deprecated/gtktrayicon-x11.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/deprecated/gtktrayicon-x11.c b/gtk/deprecated/gtktrayicon-x11.c index 02310a9ad1..556b9da696 100644 --- a/gtk/deprecated/gtktrayicon-x11.c +++ b/gtk/deprecated/gtktrayicon-x11.c @@ -551,6 +551,7 @@ gtk_tray_icon_get_colors_property (GtkTrayIcon *icon) { GdkRGBA color; + color.alpha = 1.0; g_object_freeze_notify (G_OBJECT (icon)); color.red = prop.prop[0] / 65535.0; -- 2.30.2